Alternative to the Standard Status bar at the bottom.
Author: Sean D'Epagnier
Maintainers: Rick Gleason, Jon Gough and the Plugin Team\
PI Manager Workflow: Testplugin
Shows Dashboard and Nmea Data at the bottom of the screen in various formats.
Informs the skipper of conditions that are useful in navigation. StatusBar plugin replaces builtin statusbar. The builtin status bar (disable from the User Interface tab) can be very difficult to read.
The statusbar plugin improves on some of these difficulties. It is best used with OpenGL enabled (requires some basic OpenGL extensions).
Available on the Downloads Page: https://opencpn.org/OpenCPN/info/downloadplugins.html
Display of data is controlled in the Preferences menu in the Display String area. Below is the default Display String entered under Preferences. This area is edited to display the information you would like shown on the screen.
%02A %2.2B%D %02E %2.2F%H %.1I %03J\n%02O %2.2P%R %02S %2.2T%V %03W %.2X %03.a
The formatting and values available to the user are listed below under Info
Under preferences the user can select font, font color and size as well as transparency.
Used to control the Appearance of the data. There are three Select string types which can be picked from the dropdown: Default, Ownship, Multiline
wxString DefaultString = _T("Ship %02A %2.4B %D %02E %2.4F %H SOG %.2I COG %03J
%02O %2.4P %R %02S %2.4T %V %03W %.1X Scale %Z");
wxString OwnshipString = _T("Ship %02A %2.4B %D %02E %2.4F %H SOG %.2I COG %03J");
wxString MultilineString = _T("%02A %2.2B%D %02E %2.2F%H %.1I %03J
\n%02O %2.2P%R %02S %2.2T%V %03W %.2X %03.a");
Select Dropdown - Default
Select Dropdown - Multiline
Select Dropdown - Ownship
The button Info displays a popup window with the Code key. The allowed Display strings can include the following formats:
For example:
"%03.0E\" Gives ship longitude. The format specifier 03.0 gives how many places to round to, and to use leading 0's etc.
The following are the specifier formats:
| %A | ship lat degrees |
| %B | ship lat minutes |
| %C | ship lat seconds |
| %D | ship North/South |
| %E | ship lon degrees |
| %F | ship lon minutes |
| %G | ship lon seconds |
| %H | ship East/West |
| %I | ship sog |
| %J | ship cog |
| %K | ship heading true |
| %L | ship heading magnetic |
| %O | cursor lat degrees |
| %P | cursor lat minutes |
| %Q | cursor lat seconds |
| %R | cursor North/South |
| %S | cursor lon degrees |
| %T | cursor lon minutes |
| %U | cursor lon seconds |
| %V | cursor East/West |
| %W | from ship bearing to cursor |
| %X | distance to cursor mercator |
| %Y | distance to cursor great circle |
| %Z | chart scale |
| %a | viewport orientation angle |
| %f | frames rendered per second |
| %d | Date |
| %t | Time |
| %z | Time Zone |
| %% | print a percent |
Sean D'Epagnier is the author of this plugin. His website is http://seandepagnier.users.sourceforge.net/ where you will find a “Donate” button.